home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-10-04 | 834 b | 35 lines |
- CC=vc +warpos -D__WARPOS__ -O1 -c
- LD=vc +warpos
- TDIR=warpos
-
- OBJS= $(TDIR)/usage.o $(TDIR)/sploiner.o $(TDIR)/split.o $(TDIR)/repair.o\
- $(TDIR)/join.o $(TDIR)/getopt.o $(TDIR)/getbuff.o
-
- $(TDIR)/sploiner: $(OBJS)
- $(LD) -o $@ $(OBJS)
-
- $(TDIR)/usage.o: usage.c common.h usage.h getopt.h
- $(CC) usage.c -o $@
-
- $(TDIR)/sploiner.o: sploiner.c common.h split.h join.h repair.h usage.h getopt.h
- $(CC) sploiner.c -o $@
-
- $(TDIR)/split.o: split.c common.h split.h getbuff.h usage.h getopt.h
- $(CC) split.c -o $@
-
- $(TDIR)/repair.o: repair.c common.h usage.h getopt.h
- $(CC) repair.c -o $@
-
- $(TDIR)/join.o: join.c common.h usage.h getopt.h
- $(CC) join.c -o $@
-
- $(TDIR)/getopt.o: getopt.c
- $(CC) getopt.c -o $@
-
- $(TDIR)/getbuff.o: getbuff.c getbuff.h
- $(CC) getbuff.c -o $@
-
- cleanup:
- -delete $(TDIR)/sploiner
- -delete $(OBJS)
-